
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900&display=swap');


 body{
 	margin:0;
 	font-family: 'Poppins', sans-serif;
 	font-weight: 400;
 }

 *{
 	box-sizing: border-box;
 }

 .container{
     padding-top: 10px;
 	max-width: 100%;
 	width: 100%;
 	height: 80px;
    text-align: center;
    background-image:url("../images/wall-white.jpg");
 }



 .home .home-text{
 	text-align: center;
 	position: relative;
 	z-index: 2;
 }

.home .home-text h1{
	color:#ffffff;
	font-size: 18px;
	color:#000;
	line-height: 18px;
	font-weight: 400;
	margin:0 0 20px;
}
.home .home-text p{
	margin:0;
	overflow: hidden;
}
.home .home-text p span{
    font-size: 18px;
    color:#ff2c45;
    font-weight: 200;
    display: inline-block;
    line-height: 16px;
    display: none;
}

.home .home-text p span.text-in{
	display: block;
	animation: textIn .5s ease;
}
.home .home-text p span.text-out{
	animation: textOut .5s ease;
}
@keyframes textIn{
	0%{
		transform: translateY(100%);
	}
	100%{
		transform: translateY(0%);
	}
}
@keyframes textOut{
	0%{
		transform: translateY(0%);
	}
	100%{
		transform: translateY(-100%);

	}
}

@media (min-width:48em){

    .container{
    padding-top: 10px;
 	max-width: 100%;
 	width: 100%;
 	height: 60px;
    text-align: center;
    background-image:url("../images/wall-white.jpg");
 }
    .home .home-text h1{
	color:#ffffff;
	font-size: 22px;
	color:#000;
	line-height: 18px;
	font-weight: 400;
	margin:0 0 20px;
}